home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / graphics / switchf.arc / makefile.alc < prev    next >
Makefile  |  1987-08-24  |  495b  |  24 lines

  1. #
  2. # Test out switchf.c
  3. #    Alcyon version (V2.14 required)
  4. #    for 'make' as distributed to this net.
  5. #
  6. # Include directory
  7. INCLUDE = c:\include
  8. # Library
  9. LIB = c:\lib
  10. # LINKER
  11. LINKER = c:\bin\lo68.prg
  12.  
  13. CPFLAGS = -i $(INCLUDE)\ -DALCYON -DTEST
  14.  
  15. switchf.prg : switchf.o alglobal.o init.o
  16.     $(LINKER) -r -s -o switchf.68k $(LIB)\gemstart.o switchf.o \
  17. alglobal.o init.o $(LIB)\gemlib $(LIB)\libf
  18.     $(RELMOD) switchf
  19.  
  20. switchf.o alglobal.o init.o : aline.h compiler.h
  21.  
  22. clean:
  23.     $(RM) *.o *.68k switchf.prg
  24.